home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_12_08 / treu / usrdef.h < prev   
Text File  |  1994-04-17  |  400b  |  23 lines

  1. /********************************************
  2.  * USRDEF.H - additions to <stddef.h>
  3.  *
  4.  * last revised:   02/28/93
  5.  ********************************************/
  6.  
  7. #ifndef SEEN_USRDEF
  8. #define SEEN_USRDEF
  9.  
  10. /* condition codes */
  11.  
  12. #define FALSE   0
  13. #define TRUE    !FALSE
  14.  
  15. #define OK        0
  16. #define FAIL    -1
  17.  
  18. /* synonym types */
  19.  
  20. typedef unsigned char Byte;
  21. typedef int Boolean;
  22.  
  23. #endif